net/http.http2ClientConn.goAway (field)
10 uses
net/http (current package)
h2_bundle.go#L7400: goAway *http2GoAwayFrame // if non-nil, the GoAwayFrame we received
h2_bundle.go#L7937: old := cc.goAway
h2_bundle.go#L7938: cc.goAway = f
h2_bundle.go#L7945: cc.goAway.ErrCode = old.ErrCode
h2_bundle.go#L8025: Closing: cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
h2_bundle.go#L8061: st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay &&
h2_bundle.go#L9212: closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
h2_bundle.go#L9278: if cc.goAway != nil && http2isEOFOrNetReadError(err) {
h2_bundle.go#L9280: LastStreamID: cc.goAway.LastStreamID,
h2_bundle.go#L9281: ErrCode: cc.goAway.ErrCode,
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |